92 SONGS

A visualisation of Fugazi history

This page offers a visualisation of the songs that Fugazi performed live using metadata from the Fugazi Live Series.

The raw data was processed previously and the results were stored in the the summary table of the Repeatr package. Here the summary data will be used without going into details of the data processing.

Let’s get the data, limit it to the columns that we will be using, and have a look at the first few rows.


mygraphdata <- summary %>%
  select(song, launchdate, chosen, release, rating)

head(mygraphdata)

A few of the columns need explanation.

These are all limited to the data that was available for this analysis. For instance, the launch date of a particular song may not actually be the very first time the song was performed live, but it should be close.

Now let’s graph the data. Each song will be plotted as a bubble, with the x-coordinate given by the launch date, and the y-coordinate given by the rating calculated from the choice modelling of the Fugazi Live Series data. The size of the bubble will be proportional to the number of times the song was played live, while the color of the bubble will indicate the associated release in the band’s discography. There will be a lot of information packed into this graph!


p <- mygraphdata %>%
  ggplot( aes(x=launchdate, y=rating, size = chosen, color=release, label=song)) +
  geom_point(shape = 1) +
  theme_bw()

ggplotly(p)

The graph is interactive:

When you hover over the graph a toolbar will appear at the top right. This offers several ways of interacting with the graph:

Enjoy!